home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / HD Speed / ReadMe_ENG.txt < prev   
Text File  |  2004-02-11  |  2KB  |  24 lines

  1. Q. what is the block size
  2. A. it's the size of the chunks that HD_Speed requests data from windows
  3.  
  4. Q. why does this affect the throughput
  5. A. it theoretically shouldn't affect it greatly, (as long as you dont select too small a setting that cpu usage and other such inefficiencies come in to play).  but on some systems it does.  so why ? my guess is that something in the chain between porttunnel and the physical drive is not as well written as it should be :-)
  6.  
  7. Q. what is the chain through which the data flows to reach hd_speed
  8. A. simplified: drive platters -> driver controller (including it's own cache) -> ide/scsi/sata connection -> host controller (for ide&sata, usually part of the motherboard chipset) -> drivers for hdd controller -> hd_speed
  9.  
  10. Q. can I set the block size that windows uses.
  11. A. not that I know of (not with out writing you own drivers for the HDD controller).
  12.  
  13. Q. burst rate vs non burst rate ...
  14. A. burst rate repeatedly reads (or writes) the the same section of the disk.  since most modern drives cache the read, this really amounts to a test of the speed of the drive's controller.  non burst sequentially reads the disk, and is a better test of the drive performance.
  15.  
  16. Q. what method does HD_Speed use to read/write
  17. A. the following Win32 API calls: CreateFile(devicename,...), ReadFile() and WriteFile().  See Microsoft's PlatformSDK for more info.
  18.  
  19. Q. can I see/have the sourcecode
  20. A. no
  21.  
  22. Q. what relevance is the offset setting ?
  23. A. the transfer speed of most disk types varies at different points. eg, harddrives are usually fastest at the start, and slower further on. CD-Roms are typically the opposite
  24.